home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Grand Slam 3
/
Grand Slam 3.iso
/
002
/
arcon2_3.arj
/
ARCON.CTL
next >
Wrap
Text File
|
1995-07-15
|
2KB
|
102 lines
;
; FILE ARCHIVE CONVERTER
;
; Copyright 1994 Colin Birch
;
; The Dog House BBS - 01443 400327 24 Hours
;
; Fidonet 2:442\618
;
;
; Directory for holding temporary work files - default = current dir
;
; Example - WORKDIR D:\ARCON
;
WORKDIR D:\ARCON
;
;
;
; Files to add to archive
; Format:-
; ADFILE <P/A> <path + filename><#><2nd file><#><3rd file>
;
; where P prompts before adding - A doesn't prompt
; up to 10 files can be specified all seperated by the ~#~ character
;
; 1st example would prompt before adding the file C:\RA\THISONE.COM
; 2nd example would prompt before adding files C:RA\RUNME.COM and C:\RA\FONT.DAT
; Last example would automatically add the file F:\TEST.FIL to the archive
;
ADFILE P C:\RA\THISONE.COM
ADFILE P C:\RA\RUNME.COM#C:\RA\FONT.DAT
ADFILE A F:\TEST.FIL
;
;
;
; Do you want to add an archive comment ? ( Y/N/P )
; Y=Yes N=No P=Prompt
; NOTE - This is NOT available on LHA/LZH archives
;
ADDCOMMENT P
;
;
; Name and path of text file to add as an archive comment
;
;
COMMENTFILE C:\RA\READ.IT
;
;
;
;
; Archive type and DOS command to unarchive retaining full paths within arc.
;
UNARC ZIP PKUNZIP -d
UNARC ARJ ARJ x -y
UNARC LZH LHA x
UNARC RAR RAR x
;
;
; Archive type and DOS command to re-archive retaining full paths within arc.
;
REARC ZIP PKZIP -p -r
REARC ARJ ARJ A -r
REARC LZH LHA A /r2x1
REARC RAR RAR A -r
;
;
;
; Archive type and DOS command to list files within an archive
;
ARCLIST ZIP PKZIP -vb
ARCLIST ARJ ARJ L
ARCLIST LZH LHA V
ARCLIST RAR RAR L
;
;
; Archive type and DOS command to delete files within an archive
;
DELARC ZIP PKZIP -d
DELARC ARJ ARJ D
DELARC LZH LHA D
DELARC RAR RAR D
;
;
; List of file to be automatically deleted from archives
; ( Remove leading ~;~ and add file name - wild cards are valid )
; Up to 20 files may be listed
;
;
;DELFILE (place file name here - wild cards valid - example below)
DELFILE TEST.BAT
;
;
; Path and name of external file viewer
;
VIEWER LIST.COM
;
;
;
;
; End of ARCON.CTL